body {
    background-image: url("https://file.garden/ZpyoPBriBHjSP-h5/laikabg.gif");
    background-repeat: repeat;
    color: black;
    margin: 30px;
}

p.dashed {
  border-style: dashed;
  border-color: purple;
  padding: 2px;
}

.container {
display: grid;
grid-gap: 10px;
grid-template:
"sidebar header header"
"sidebar main main";
grid-template-columns: 1fr 3fr .5fr;
}


header {
    grid-area: header;
}

poke {
    display: inline-block;
    background-image: linear-gradient(to bottom, white, #ffe26e);
    border: 2px solid #ffe26e;
    border-radius: 5px;
    max-height: 30px;
    color: black;
    width: 100px;
    padding-bottom: 50px;
    margin-right: 100px;
    margin-left: 100px;
}

sidebar {
    grid-area: sidebar;
    background-color: #fff1cc;
    border: 5px solid #ffe26e;
    border-radius: 8px;
    margin: 10px;
    padding: 10px;
    max-height: 600px;
    overflow-y: auto;
  -ms-overflow-style: none;  /* IE/Edge */
  scrollbar-width: none;     /* Firefox */
}

.sidebar::-webkit-scrollbar {
    display: none;  /* Chrome/Safari */
  }

main {
    grid-area: main;
}


/*THE TABS*/

* {box-sizing: border-box;}

/* Style the tab */
.tab {
  float: right;
  width: 30%;
  height: 300px;
  z-index: 2;
}

/* Style the buttons inside the tab */
.tab button {
  display: block;
  background-color: #cce4ff;
  color: black;
  padding: 22px 16px;
  width: 60%;
  margin-top: 5px;
  border: 2px solid #8d8df0;
  border-left: none;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  outline: none;
  text-align: left;
  cursor: pointer;
  height: 30px;
  transition: 0.3s;
  font-size: 17px;
  margin-left: -10px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #8d8df0;
}

/* Style the tab content */
.tabcontent {
  float: left;
  padding: 0px 12px;
  border: 5px solid #ffe26e;
  border-radius: 5px;
  background-color: #fff1cc;
  width: 70%;
  height: 500px;
  max-height: 500px;
  overflow-y: auto;
  -ms-overflow-style: none;  /* IE/Edge */
  scrollbar-width: none;     /* Firefox */
}

.tabcontent::-webkit-scrollbar {
    display: none;  /* Chrome/Safari */
  }
